CREATE TABLE guestbook (
ID int NOT NULL AUTO_INCREMENT,
name varchar(30),
email varchar(60),
dateposted date,
comment text,
INDEX (ID)
);